home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 014a / cls.zip / CL.DOC next >
Text File  |  1991-06-25  |  5KB  |  109 lines

  1. ┌────────────────────────────────────────────────────────────────────────┐
  2. │ CL.DOC                                       CL Copyright 1991 by ESDC │
  3. │                                                                        │
  4. │ CL is distributed as is.  We make no claims, accept no responsibility. │
  5. │ We would like to hear if you have found it useful.  Throwing it out    │
  6. │ here is kinda like a message in a bottle.  It will be interesting to   │
  7. │ see where it goes...                                                   │
  8. │                                          Richard Eaton CIS: 70034,1341 │
  9. └────────────────────────────────────────────────────────────────────────┘
  10.  
  11.  
  12. CL clears the screen 15+ different ways.  It can restore screens saved with 
  13. CL or CLCAP using the 15 methods.  A small version if CL, LCL (Little CL) is 
  14. also included.  LCL includes everything except the help screen and routines 
  15. requiring floating point: RADAR, PUZZLE and WINDOWCLEAN.  
  16.  
  17. Running CL
  18.  
  19. CL no arguments  
  20.     Displays HELP screen
  21.  
  22. CL one argument
  23.  
  24.     This will clear the screen to black using the method in the argument. 
  25.     The argument is a number between 1-16 or one of the Command Words.
  26.     The numbers and matching Command Words are:
  27.  
  28.         1  CloseCurtain 
  29.         2  Dissolve
  30.         3  Explode  
  31.         4  HorBlinds
  32.         5  OpenCurtain
  33.         6  PushDown
  34.         7  PushL2R
  35.         8  PushR2L
  36.         9  PushUp
  37.         10 Puzzle
  38.         11 Radar
  39.         12 RollAway
  40.         13 VertBlinds
  41.         14 WindowClean
  42.         15 WipeL2R
  43.         16 Shake
  44.  
  45. CL 16 (Shake) This will shake the screen.  An additional argument may
  46.     be passed to shake the screen NN times (CL shake 10).
  47.  
  48. CL 17 (Save)
  49.     This command must be followed by a file name.  The screen is saved to ]
  50.     that file.
  51.  
  52. CL NN "FileName"  
  53.     If the third argument is a file, then the saved screen in the file will
  54.     be restored using the method NN.
  55.  
  56. CL NN somecharacter
  57.     If some character (ASCII value 1-255) is passed as the third argument then the screen will
  58.     be cleared to that character using the method NN leaving the existing
  59.     color attributes intact.  Example: CL Radar ▒  (▒ can be entered by using 
  60.     Alt+177)
  61.  
  62. CL NN somecharacter FG BG
  63.     If there are an additional two arguments, then these values will be 
  64.     used for the color attributes for the screen clearing.  
  65.  
  66. PAUSE
  67.     Any command sequence can end with PAUSE. PAUSE at the end of the line will
  68.     cause CL to (you guessed it) pause until there is a keystroke. 
  69.  
  70. CL Help Screen
  71.  
  72.  
  73. ╔════════════════════════════════════ CL ══════════════════════════════════════╗
  74. ║                 ┌───────────────────────────────────────────────────────────┐║
  75. ║ 1  CloseCurtain │ To clear screen: CL NN or, CL "name"                      │║
  76. ║ 2  Dissolve     │ To clear with pattern: CL NN character FG BG              │║
  77. ║ 3  Explode      │          Example: CL OPENCURTAIN ▓ 15 1                   │║
  78. ║ 4  HorBlinds    │       Short hand: CL 5 ▓ 15 1                             │║
  79. ║ 5  OpenCurtain  │  (▓ = Alt+178)                                            │║
  80. ║ 6  PushDown     │                                                           │║
  81. ║ 7  PushL2R      │ Alternate method using saved screens.                     │║
  82. ║ 8  PushR2L      │           Step 1: CL SAVE myfile                          │║
  83. ║ 9  PushUp       │ CL will save the entire screen to "myfile"                │║
  84. ║ 10 Puzzle       │           Step 2: CL OPENCURTAIN myfile                   │║
  85. ║ 11 Radar        │ CL will restore screen in "myfile" using OPENCURTAIN      │║
  86. ║ 12 RollAway     │                                                           │║
  87. ║ 13 VertBlinds   │ CL SHAKE NumberOfShakes  (shakes screen)                  │║
  88. ║ 14 WindowClean  │                                                           │║
  89. ║ 15 WipeL2R      │ CL arg arg arg PAUSE - Wait for keystroke                 │║
  90. ║ 16 Shake        │ LCL (Little CL)                                           │║
  91. ║ 17 Save         │ All options except RADAR, PUZZLE, WINDOWCLEAN             │║
  92. ║                 │                                                           │║
  93. ║                 └───────────────────────────────────────────────────────────┘║
  94. ╚════════════════════════════ (c) 1991 by ESDC ════════════════════════════════╝
  95.  
  96.  
  97. CLCAP
  98.  
  99.     CLCAP is a TSR that is used to save screens that can be read by
  100.     CL.  To start CLCAP enter: CLCAP After it has been loaded, Ctrl+S
  101.     will pop it up.  It will ask for a file name. If a valid file name 
  102.     is entered, it will be saved.  CLCAP can be removed from memory by 
  103.     entering CLCAP /U
  104.  
  105.                                                                                 
  106.  
  107.  
  108.                                                                           
  109.